home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / rexx / startall.avm < prev    next >
Text File  |  1994-06-24  |  691b  |  18 lines

  1. /* starts everything */
  2. faxprogram = upper(getclip('AVMFaxProgram'))
  3.  
  4. if faxprogram = 'TRAPFAX' then 'settfaxvars.avm'
  5. else if faxprogram = 'GPFAX' then 'startgpfax.avm'
  6.  
  7. if upper(getclip('AVMStartServerMan')) ~= 'NO' then
  8.   address command 'run >nil: <nil: avm:serverman'
  9. if upper(getclip('AVMStartCallNotifier')) ~= 'NO' then
  10.   address command 'run >nil: <nil: avm:callnotifier'
  11. if upper(getclip('AVMStartCIDLogger')) ~= 'NO' then
  12.   address command 'run >nil: <nil: avm:cidlogger'
  13. if upper(getclip('AVMStartLogger')) ~= 'NO' then
  14.   address command 'run >nil: <nil: avm:logger'
  15. if upper(getclip('AVMStartScheduler')) ~= 'NO' then
  16.   address command 'run >nil: <nil: avm:scheduler Outgoing'
  17.  
  18.